char letter = 'A'; // Declare variable letter and assign 'A'
for (int i=0; i<26; i++) {
  print(letter); // Prints a character to the console
  letter++;  // Add 1 to the value of the character
}
println('.'); // Adds a period to the end of the alphabet
